diff options
Diffstat (limited to 'src/app/manga/[title]/page.jsx')
| -rw-r--r-- | src/app/manga/[title]/page.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/manga/[title]/page.jsx b/src/app/manga/[title]/page.jsx index 7788a59..e586d09 100644 --- a/src/app/manga/[title]/page.jsx +++ b/src/app/manga/[title]/page.jsx @@ -2,6 +2,8 @@ import styles from "./title.module.css"; import Image from "next/image"; import Link from "next/link"; +export const runtime = 'edge'; + export default async function MangaInfo({ params }) { const title = params.title; const data = await GetSearchedAnime(title); |